home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypertxt / msdos / hydos10 / edlin < prev    next >
Text File  |  1991-04-11  |  3KB  |  75 lines

  1.                                    EDLIN
  2.        A line editor.  It can be used to create and edit ascii files.
  3.  
  4. COMMAND TYPE: External                  VERSION: 2.0 and up
  5.  
  6. USE: EDLIN [d:][path] filename [/B]
  7.  
  8. d: path filename specifies the name of the file to create or edit.  If
  9.    the /B parameter is not used, EDLIN will stop loading the specified
  10.    file when the first end of file marker (Ctrl-Z) is encountered.  If /B
  11.    is used, the entire file will be loaded. EDLIN creates a file if the
  12.    specified file is not found.
  13.  
  14. A brief summary of EDLIN commands is given below.  See the MSDOS users
  15. reference manual for full details.
  16.  
  17. Many commands will allow you to specify line numbers.  You may use the
  18. symbol . in place of the current line number and # in place of the
  19. line number of the last line in the buffer.
  20.  
  21. [n]A  APPEND loads lines from the disk and places them at the end of the
  22.       input buffer. [n] specifies the number of lines to append to
  23.       the current file.
  24.  
  25. [n],[n],[n][,count]C   COPY copies the contents of a line or range of
  26.       lines to another location.  The first two [n]'s specify the
  27.       range of lines to copy.  The third [n] specifies the line to
  28.       copy to. [count] specifies the number of times that the copy
  29.       will be performed.
  30.  
  31. [n][,n]D   DELETE deletes a line or range of lines. The [n] parameters
  32.       specify the first and last line to delete.
  33.  
  34. [n]   calls up a line of text for editing.
  35.  
  36. E     EXIT saves the current file and exits EDLIN.
  37.  
  38. [n]I  INSERT inserts lines of text in the current file. [n]
  39.       specifies the line number where the insert will begin.
  40.  
  41. [n][,n]L   LIST displays a line or range of lines. [n][,n] specifies
  42.       the first and last lines to list.
  43.  
  44. [n],[n],n M   MOVE moves a line or range of lines to a specified line.
  45.       The first two [n]'s specify the first and last lines to
  46.       move. The third line number specifies  where the text will be
  47.       moved to.
  48.  
  49. [n][,n] P   PAGE allows you to scroll through a file one PAGE (23
  50.       lines) at a time. [n][,n] specifies the first and last
  51.       lines to display.
  52.  
  53. Q     QUIT exits EDLIN without saving the current file.
  54.  
  55. [n][,n][?] R s1^Zs2   REPLACE replaces all occurrences of a specified
  56.       string with a second string. [n][,n] specify the range of lines
  57.       to perform the REPLACE on.  The optional ? will request an
  58.       O.K.?  prompt after each replace.  s1 specifies the string to
  59.       search for and s2 is the string to replace it with. A control-Z
  60.       separates the two strings.
  61.  
  62. [n][,n][?] Sstring   SEARCH searches for a specified string. [n][,n]
  63.       specify the range of lines to perform the SEARCH on.  The
  64.       optional ?  will request an O.K.?  prompt after each replace.
  65.       string is the string to search for.
  66.  
  67. [n] Tfile   TRANSFER loads the contents of a specified file into the file
  68.       currently being edited. [n] specifies the location where the
  69.       file being TRANSFERred (merged) will be placed.  file is the
  70.       file to be TRANSFERred.
  71.  
  72. [n]W   WRITE writes lines to disk from the file currently being edited.
  73.       [n] specifies the number of lines to write to disk. This
  74.       command is used to free up memory.
  75.